home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / UCRASM25.ARJ / LWRTBL.ASM < prev    next >
Assembly Source File  |  1991-10-12  |  399b  |  34 lines

  1. stdData        segment    para public 'sldata'
  2. ;
  3. ;
  4. ;
  5.         public    $lwrtbl
  6. ;
  7. ; Output all chars up to the upper case letters here.
  8. ;
  9. $lwrtbl        equ    this byte
  10. i        =    0
  11.         rept    'A'
  12.         db    i
  13. i        =    i + 1
  14.         endm
  15. ;
  16. ; Output uc for lc here
  17. ;
  18. i        =    'a'
  19.         rept    26
  20.         db    i
  21. i        =    i+1
  22.         endm
  23. ;
  24. ; Output all other characters here.
  25. ;
  26. i        =    'Z'+1
  27.         rept    255-'Z'
  28.         db    i
  29. i        =    i+1
  30.         endm
  31. ;
  32. stdData        ends
  33.         end
  34.